testing.common.barrier (field)

10 uses

	testing (current package)
		fuzz.go#L306: 				barrier:   make(chan bool),
		fuzz.go#L520: 						barrier:   make(chan bool),
		fuzz.go#L605: 			barrier:   nil, // T.Parallel has no effect when fuzzing.
		fuzz.go#L709: 			close(f.barrier)
		testing.go#L654: 	barrier  chan bool // To signal parallel subtests they may start. Nil when T.Parallel is not present (B) or not usable (when fuzzing).
		testing.go#L1544: 	if t.parent.barrier == nil {
		testing.go#L1577: 	<-t.parent.barrier // Wait for the parent test to complete.
		testing.go#L1750: 			close(t.barrier)
		testing.go#L1827: 			barrier:   make(chan bool),
		testing.go#L2267: 					barrier:   make(chan bool),